Assigns the values of a CSR matrix to a dense matrix.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=real64), | intent(out), | dimension(:,:) | :: | dense |
The dense matrix. |
|
| class(csr_matrix), | intent(in) | :: | sparse |
The CSR matrix. |
Assigns the values of a dense matrix to a CSR matrix.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(csr_matrix), | intent(out) | :: | sparse |
The CSR matrix. |
||
| real(kind=real64), | intent(in), | dimension(:,:) | :: | dense |
The dense matrix. |
Assigns an MSR matrix to a dense matrix.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=real64), | intent(out), | dimension(:,:) | :: | dense |
The dense matrix. |
|
| class(msr_matrix), | intent(in) | :: | msr |
The MSR matrix. |
Assigns a dense matrix to an MSR matrix.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(msr_matrix), | intent(out) | :: | msr |
The MSR matrix. |
||
| real(kind=real64), | intent(in), | dimension(:,:) | :: | dense |
The dense matrix. |
Assigns a CSR matrix to an MSR matrix.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(msr_matrix), | intent(out) | :: | msr |
The MSR matrix. |
||
| class(csr_matrix), | intent(in) | :: | csr |
The CSR matrix. |
Assigns an MSR matrix to a CSR matrix.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(csr_matrix), | intent(out) | :: | csr |
The CSR matrix. |
||
| class(msr_matrix), | intent(in) | :: | msr |
The MSR matrix. |